home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr18 / tlxtw109.zip / TLXTWHLP.SLT < prev    next >
Text File  |  1993-06-01  |  954b  |  33 lines

  1. // tlxtwhlp.slt = Alt-F1
  2. // Uses List.com to list a text file that shows the key assignments.
  3. // Tlxtwhlp.txt file should be in the same directory as Telix.exe.
  4.  
  5. ///////////////////////////////////////////////////////////////////////////////
  6.  
  7.  
  8. str help[64] = "list";      // Edit the this line if you don't use List.com
  9.                             // then recompile this script with CS.exe
  10.                             // Ex: CS Tlxtwhlp
  11.  
  12.  
  13. ///////////////////////////////////////////////////////////////////////////////
  14.  
  15. main()
  16. {
  17. int old_chk_key; old_chk_key=_scr_chk_key; _scr_chk_key=0;
  18. str file[64];
  19. strcat (file, _telix_dir);
  20. strcat (file, "tlxtwhlp.txt");
  21. if (filefind(file, 0) < 1)
  22.  {
  23.   strupper(file);
  24.   inschrs("Can't find ", file, 0,  11);  status_wind(file, 15);
  25.   _scr_chk_key=old_chk_key; return -1;
  26.   return(-1);
  27.   }
  28.  inschrs(" ", file, 0, 1 );
  29.  run(help, file);
  30.  _scr_chk_key=old_chk_key; return;
  31.  return;
  32.  }
  33.